From 078b1e21f78f614741f02e93bd7335f67389edd9 Mon Sep 17 00:00:00 2001 From: John Paul Wallington Date: Sun, 9 Jul 2006 03:31:25 +0000 Subject: [PATCH] (Fforward_comment): Use type int for `stop', `count1', `out_charpos' and `out_bytepos' too; revert Stef's previous change. --- src/syntax.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/syntax.c b/src/syntax.c index e95557d83aa..9af4773a01b 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -1994,14 +1994,14 @@ between them, return t; otherwise return nil. */) { register int from; int from_byte; - register EMACS_INT stop; + register int stop; register int c, c1; register enum syntaxcode code; int comstyle = 0; /* style of comment encountered */ int comnested = 0; /* whether the comment is nestable or not */ int found; - EMACS_INT count1; - EMACS_INT out_charpos, out_bytepos; + int count1; + int out_charpos, out_bytepos; int dummy; CHECK_NUMBER (count); -- 2.30.2